home *** CD-ROM | disk | FTP | other *** search
/ Jurassic Jigsaws / JURASSIC.BIN / mmvlogo.dir / 00074_Script_movie script < prev    next >
Text File  |  1996-08-19  |  339b  |  22 lines

  1. global filesep, gintrofilename
  2.  
  3.  
  4. on startmovie
  5.   
  6.   if the machinetype = 256 then
  7.     set filesep = "\"
  8.   else 
  9.     set filesep = ":"
  10.   end if
  11.   when mousedown then doexit
  12. end startmovie
  13.  
  14.  
  15. on doexit
  16.   if not voidp(gIntroFileName) then 
  17.     go to movie gIntroFileName
  18.   else
  19.     go to movie "Intro"
  20.   end if
  21. end doexit
  22.